home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000240_rosek@alxn.com_Tue Feb 7 14:09:25 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!panix!newsfeed.media.kyoto-u.ac.jp!postnews.google.com!g43g2000cwa.googlegroups.com!not-for-mail
  2. From: "K.Rose" <rosek@alxn.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Kermit 95 ver 2.1 and SECURED FTP automated connection
  5. Date: 26 Jan 2006 12:28:17 -0800
  6. Organization: http://groups.google.com
  7. Lines: 64
  8. Message-ID: <1138304696.901584.44500@g43g2000cwa.googlegroups.com>
  9. NNTP-Posting-Host: 63.116.183.142
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset="iso-8859-1"
  12. X-Trace: posting.google.com 1138307303 23187 127.0.0.1 (26 Jan 2006 20:28:23 GMT)
  13. X-Complaints-To: groups-abuse@google.com
  14. NNTP-Posting-Date: Thu, 26 Jan 2006 20:28:23 +0000 (UTC)
  15. User-Agent: G2/0.2
  16. X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322),gzip(gfe),gzip(gfe)
  17. Complaints-To: groups-abuse@google.com
  18. Injection-Info: g43g2000cwa.googlegroups.com; posting-host=63.116.183.142;
  19.    posting-account=E0Bndg0AAADHM1P1KcY5WfSC0Rso1Tep
  20. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15484
  21.  
  22. We recently purchased Kermit 95 ver 2.1. I'm new to the product. From
  23. an XP client I'm able to schedule and launch K95 via a batch file and
  24. have it run a .KSC script. The script uses FTP and sucessfully logs in
  25. anonymously to a W2K3 server running SP1 and Microsoft ftp service/IIS
  26. ver 6.0. The put with parameters is working great. So here is my
  27. question.
  28.  
  29. I don't always trust Microsoft and so do not want to be faked out.
  30. Below is my script. What I'm hoping is that it is a "SECURED FTP
  31. connection" (minus the anonymous part) so do all these SET parameters
  32. work against a W2K3 server or goes the ftp connection need to be made
  33. to some complimenting host also running a Kermit product?
  34.  
  35.  
  36. SET AUTHENTICATION SSL VERIFY
  37. ;SET AUTH SSL CERTS-OK
  38. SET FTP AUTHTYPE SSL
  39. SET FTP AUTOLOGIN ON
  40. ;SET FTP COMMAND-PROTECTION-LEVEL PRIVATE
  41. ;SET FTP DATA-PROTECTION-LEVEL PRIVATE
  42. SET TRANSACTION-LOG VERBOSE
  43.  
  44. SET TRANSFER DISPLAY OFF
  45. SET FTP DISPLAY OFF
  46. SET FTP PROGRESS-MESSAGES OFF
  47.  
  48. SET TRANSACTION-LOG FTP
  49. SET FTP DISPLAY BRIEF
  50. set locus local
  51.  
  52. ; Next position to high level LOCAL directory
  53.  
  54.   LCD c:\
  55.   LCD c:\Junk
  56.  
  57. set locus auto
  58.  
  59. ; Next delete audit trail before starting
  60. if exist LDASFTPLOG.txt del LDASFTPLOG.txt
  61.  
  62. LOG TRANSACTIONS LDASFTPLOG.txt
  63.  
  64. wait 5
  65.  
  66.   ftp ALXN-VMD-QC01 /anonymous
  67.   if fail exit 1 Connection failed
  68.   if not \v(ftp_loggedin) exit 1 Login failed
  69.   undefine \%p
  70.  
  71. ; Next position to high level TARGET directory
  72.  
  73.   ftp cd LDAS
  74.   ftp cd \%1
  75.   ftp cd \BACKUP
  76.   ;if fail exit 1 ftp cd working: \v(ftp_message)
  77.  
  78. ;Now we upload the file(s):
  79.  
  80.   ftp mput /recursive *.txt *.pdf
  81.   
  82. ftp bye
  83. exit
  84. exit
  85.